home *** CD-ROM | disk | FTP | other *** search
/ Aminet 40 / Aminet 40 (2000)(Schatztruhe)[!][Dec 2000].iso / Aminet / text / edit / FreeEd.lha / FreeED / FreeEd-Install < prev    next >
Encoding:
Text File  |  2000-09-01  |  525 b   |  29 lines

  1. (set destdir  
  2.     (askdir
  3.         (prompt "Where to place FreeED...")
  4.         (help @askdir-help)
  5.         (default "work:FreeED")
  6.     )
  7. )
  8. (set destdir (tackon DestDir "FreeED"))
  9. (makedir destdir
  10.     (prompt "I will now create the directory")
  11.     (help @makedir-help)
  12.     (infos)
  13. )
  14. (copyfiles
  15.     (prompt "Copying Everything...")
  16.     (source "prog/")
  17.     (dest destdir)
  18.     (all)
  19. )
  20.  
  21. (copylib 
  22.     (prompt "Installing Cando.library.")
  23.     (help @copylib-help)
  24.     (source "Cando.library")
  25.     (dest "Libs:")
  26.     (confirm)
  27. )
  28. (message "Everything done!")
  29.